04. Too Much Touch
Too Much Touch
Quick note: some mobile browsers will select text if the user long presses on the screen. This is super useful for copying and pasting, but can be frustrating if a user didn’t intend to select any text.
You can prevent this from happening using the user-select CSS property seen here:
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
Keep this in mind as you start designing touch inputs!